style.module.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .timeline {
  2. }
  3. /*----- TIMELINE ITEM -----*/
  4. .timelineItem {
  5. padding-left: 30px;
  6. position: relative;
  7. }
  8. /*----- TIMELINE INFO -----*/
  9. .timelineInfo {
  10. font-size: 12px;
  11. }
  12. /*----- TIMELINE MARKER -----*/
  13. .timelineMarker {
  14. position: absolute;
  15. top: 0;
  16. bottom: 0;
  17. left: 0;
  18. width: 15px;
  19. &:before {
  20. border-radius: 100%;
  21. content: "";
  22. display: block;
  23. height: 15px;
  24. position: absolute;
  25. top: 4px;
  26. left: 0;
  27. width: 15px;
  28. z-index: 2;
  29. }
  30. &:after {
  31. content: "";
  32. width: 1px;
  33. background: #ccd5db;
  34. position: absolute;
  35. z-index: 1;
  36. top: 10px;
  37. bottom: -10px;
  38. left: 7px;
  39. }
  40. .timelineItem:last-child &:after {
  41. content: none;
  42. }
  43. }
  44. /*----- TIMELINE CONTENT -----*/
  45. .timelineContent {
  46. padding-bottom: 20px;
  47. p:last-child {
  48. margin-bottom: 0;
  49. }
  50. }
  51. .weekbtn {
  52. border-radius: 0.2rem;
  53. background: #11de68;
  54. // @include customButton(linear-gradient(to bottom, #b856ef, #6948d5), #f5a3ff, 0.2rem);
  55. span {
  56. position: relative;
  57. z-index: 2;
  58. }
  59. }
  60. .tableBox {
  61. //
  62. border: 1px solid #46e3ff;
  63. }
  64. .td {
  65. color: #fff;
  66. }
  67. .even {
  68. position: relative;
  69. background: #2b363f;
  70. //border-radius: 0.1rem;
  71. &:after {
  72. //content: "";
  73. //position: absolute;
  74. //left: 0;
  75. //top: 0;
  76. //right: 0;
  77. //bottom: 0;
  78. //border: 1px solid #46e3ff;
  79. //box-shadow: 0 0 10px #35a1b4 inset;
  80. //border-radius: 0.1rem;
  81. //background: rgba(172, 89, 235, 0.25);
  82. }
  83. // border: 1px solid #46e3ff;
  84. // td:nth-child(1) {
  85. // border: 1px solid #46e3ff;
  86. // border-radius: 0.1rem 0 0 0.1rem;
  87. // }
  88. }
  89. .header {
  90. background-color: #1c6042;
  91. --primary-color: #fff;
  92. }